home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / ColorSync 2.5.1 SDK / Sample Code / CSDemo 2.5 / CSDemoSources / winAbout.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-09  |  956 b   |  40 lines  |  [TEXT/CWIE]

  1.  
  2. #ifndef _WINDOWABOUT_
  3. #define _WINDOWABOUT_
  4.  
  5.  
  6. #ifndef __TYPES__
  7. #include <Types.h>
  8. #endif
  9.  
  10. #ifndef __EVENTS__
  11. #include <Events.h>
  12. #endif
  13.  
  14. #ifndef _WIN_
  15. #include "win.h"
  16. #endif
  17.  
  18.  
  19. /**\
  20. |**| ==============================================================================
  21. |**| PUBLIC DEFINES
  22. |**| ==============================================================================
  23. \**/
  24. #define kAboutDocType        'Abou'            // about window tag
  25.  
  26.  
  27. /**\
  28. |**| ==============================================================================
  29. |**| PUBLIC FUNCTION PROTOTYPES
  30. |**| ==============================================================================
  31. \**/
  32. void        winUpdateAbout            ( winHandle win, EventRecord *e ) ;
  33. void        winCloseAbout            ( winHandle win ) ;
  34. void        winMenuAbout            ( winHandle win, long menuResult, Boolean *didit ) ;
  35. void        winUpdateMenusAbout        ( winHandle win ) ;
  36. OSErr        winAllocAbout            ( winHandle win ) ;
  37. OSErr        winNewAbout                ( winHandle win ) ;
  38.  
  39.  
  40. #endif